home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.plaf.basic;
-
- import java.awt.event.KeyListener;
- import java.awt.event.MouseListener;
- import java.awt.event.MouseMotionListener;
-
- public interface ComboPopup {
- KeyListener getKeyListener();
-
- MouseListener getMouseListener();
-
- MouseMotionListener getMouseMotionListener();
-
- void hide();
-
- boolean isVisible();
-
- void show();
-
- void uninstallingUI();
- }
-